正如其他的框架一样,Ember
也有它特有的数据绑定方式,并且可以在任何一个对象上使用绑定。而然,数据绑定大多数情况都是使用在Ember
框架本身,对于开发者最好还是使用计算属性更为简单方便。
双向绑定
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24
| Wife = Ember.Object.extend({ householdIncome: 800 }); var wife = Wife.create();
Hasband = Ember.Object.extend({ householdIncome: Ember.computed.alias('wife.householdIncome') });
hasband = Hasband.create({ wife: wife });
console.log('householdIncome = ' + hasband.get('householdIncome'));
wife.set('householdIncome', 1000); console.log('householdIncome = ' + hasband.get('householdIncome'));
hasband.set('householdIncome', 10); console.log('wife householdIncome = ' + wife.get('householdIncome'));
|
需要注意的是绑定并不会立刻更新对应的值,Ember
会等待直到程序代码完成运行完成并且是在同步改变之前,所以你可以多次改变计算属性的值。由于绑定是很短暂的所以也不需要担心开销问题。
单向绑定
单向绑定只会在一个方向上传播变化。相对双向绑定来说,单向绑定做了性能优化,对于双向绑定来说如果你只是在一个方向上设置关联其实就是一个单向绑定。
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19
| var user = Ember.Object.create({ fullName: 'Kara Gates' });
UserComponent = Ember.Component.extend({ userName: Ember.computed.oneWay('user.fullName') });
userComponent = UserComponent.create({ user: user });
console.log('fullName = ' + user.get('fullName'));
user.set('fullName', "krang Gates"); console.log('component>> ' + userComponent.get('userName'));
userComponent.set('fullName', "ubuntuvim"); console.log('user >>> ' + user.get('fullName'));
|
关于数据绑定的知识点不多,相对来说不是重点,毕竟对象之间的关联关系是越少、越简单越好。关联关系多了反而难以维护。
博文完整代码放在Github(博文经过多次修改,博文上的代码与github代码可能又出入,不过影响不大!),如果你觉得博文对你有点用在github项目上给我个star
吧。您的肯定对我来说是最大的动力!!